home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Enlighten DSM 1.1
/
SGI EnlightenDSM 1.1.iso
/
dec3240
/
events.z
/
events
/
snmp
/
Events20.mib
< prev
next >
Wrap
Text File
|
1998-06-30
|
49KB
|
2,219 lines
--- *
--- * ENlighten Software, a division of
--- * Software Professionals Inc.
--- *
--- * SPI-UNIX MIB FOR ENLIGHTEN/EVENTS Version 2.0
--- *
--- * IMPORTS
--- * OBJECT-TYPE, NetworkAddress, IpAddress,
--- * Counter, Gauge, TimeTicks, enterprises
--- * FROM RFC1155-SMI;
--- *
--- * %W% %G%
--- *
Events20 DEFINITIONS ::= BEGIN
--- iso OBJECT IDENTIFIER ::= { 1 }
--- org OBJECT IDENTIFIER ::= { iso 3 }
--- dod OBJECT IDENTIFIER ::= { org 6 }
--- internet OBJECT IDENTIFIER ::= { dod 1 }
--- mgmt OBJECT IDENTIFIER ::= { internet 2 }
--- private OBJECT IDENTIFIER ::= { internet 4 }
private OBJECT IDENTIFIER ::= { iso(1) org(3) dod(6) internet(1) 4 }
enterprises OBJECT IDENTIFIER ::= { private 1 }
sftw OBJECT IDENTIFIER ::= { enterprises 548 }
sftw-products OBJECT IDENTIFIER ::= { sftw 1 }
agents OBJECT IDENTIFIER ::= { sftw-products 1 }
agentenl OBJECT IDENTIFIER ::= { agents 1 }
subagents OBJECT IDENTIFIER ::= { sftw-products 2 }
agentmon OBJECT IDENTIFIER ::= { subagents 1 }
events20 OBJECT IDENTIFIER ::= { subagents 2 }
limits OBJECT IDENTIFIER ::= { events20 1 }
trapmanage OBJECT IDENTIFIER ::= { events20 2 }
os OBJECT IDENTIFIER ::= { events20 3 }
kernel OBJECT IDENTIFIER ::= { events20 4 }
mbuf OBJECT IDENTIFIER ::= { events20 5 }
ncache OBJECT IDENTIFIER ::= { events20 6 }
vm OBJECT IDENTIFIER ::= { events20 7 }
cpu OBJECT IDENTIFIER ::= { events20 8 }
proc OBJECT IDENTIFIER ::= { events20 9 }
fs OBJECT IDENTIFIER ::= { events20 10 }
files OBJECT IDENTIFIER ::= { events20 11 }
qu OBJECT IDENTIFIER ::= { events20 12 }
hardware OBJECT IDENTIFIER ::= { events20 13 }
software OBJECT IDENTIFIER ::= { events20 14 }
printer OBJECT IDENTIFIER ::= { events20 15 }
disks OBJECT IDENTIFIER ::= { events20 16 }
rpc OBJECT IDENTIFIER ::= { events20 17 }
api1 OBJECT IDENTIFIER ::= { events20 18 }
api2 OBJECT IDENTIFIER ::= { events20 19 }
api3 OBJECT IDENTIFIER ::= { events20 20 }
api4 OBJECT IDENTIFIER ::= { events20 21 }
api5 OBJECT IDENTIFIER ::= { events20 22 }
api6 OBJECT IDENTIFIER ::= { events20 23 }
usertraps OBJECT IDENTIFIER ::= { events20 24 }
--- * INCLUDES THE FOLLOWING FROM MIB-II
--- *mib-2 OBJECT IDENTIFIER ::= { mgmt 1 }
--- *system OBJECT IDENTIFIER ::= { mib-2 1 }
--- *interfaces OBJECT IDENTIFIER ::= { mib-2 2 }
--- *at OBJECT IDENTIFIER ::= { mib-2 3 } DEPRECIATED
--- *ip OBJECT IDENTIFIER ::= { mib-2 4 }
--- *icmp OBJECT IDENTIFIER ::= { mib-2 5 }
--- *tcp OBJECT IDENTIFIER ::= { mib-2 6 }
--- *udp OBJECT IDENTIFIER ::= { mib-2 7 }
--- *ega OBJECT IDENTIFIER ::= { mib-2 8 } not implimented
--- *cmot OBJECT IDENTIFIER ::= { mib-2 9 } no longer a mib2 group
--- *transmision OBJECT IDENTIIFER ::= { mib-2 10}
--- *snmp OBJECT IDENTIFIER ::= { mib-2 11 }
--- ********************
--- Limits Group
---********************
--- limits OBJECT IDENTIFIER ::= { events20 1 }
--- The limits group is used for remotely managing Enlighten/Events .
--- To manage TRAP instances, see the Trap Manage MIB group.
numTests OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of tests being monitored."
::= { limits 1 }
limitTable OBJECT-TYPE
SYNTAX SEQUENCE OF LimitEntry
ACCESS not-accessible
STATUS mandatory
::= { limits 2 }
limitEntry OBJECT-TYPE
SYNTAX LimitEntry
ACCESS not-accessible
STATUS mandatory
INDEX { limitIndex }
::= { limitTable 1 }
LimitEntry ::=
SEQUENCE {
limitIndex INTEGER,
limitName DisplayString,
limitUnits DisplayString,
limitStatus INTEGER,
limitTfreq INTEGER,
limitAfreq INTEGER,
limitRealVarType DisplayString,
limitHigh INTEGER,
limitLow INTEGER,
limitPjump INTEGER,
limitNjump INTEGER,
limitPrate INTEGER,
limitNrate INTEGER,
limitDelta INTEGER,
limitLog INTEGER
}
limitIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index for this table row entry."
::= { limitEntry 1 }
limitName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name associated with this test."
::= { limitEntry 2 }
limitUnits OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The unit of measure for this test."
::= { limitEntry 3 }
limitStatus OBJECT-TYPE
SYNTAX INTEGER { disable(1), enable(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current state of this specific test. Setting to off
stops data colection, alarms and traps for this test."
::= { limitEntry 4 }
limitTfreq OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The minimum testing interval (in minutes) for this test."
::= { limitEntry 5 }
limitAfreq OBJECT-TYPE
SYNTAX INTEGER (1..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The minimum time (in minutes) between alarm reports
for this test (minutes)."
::= { limitEntry 6 }
limitRealVarType OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The variable type used internally for each of the
following alarm limits . If the real variable type
is 'float' then the displayed value should be divided
by 1000 . If setting a float, use the integer of
1000 times the desired value."
::= { limitEntry 7 }
-- THE ALARM THRESHOLDS
-- When setting an alarm theshold, it is important to pay attention
-- to the Unit of Measure relating to the test you are effecting.
-- You must also be aware weather the limitRealVarType for the
-- selected test is 'integer' or 'float' . Since SNMP does not
-- directly support floating point numbers, floats must be displayed
-- as an encoded integer or as a DisplayString. AgentMon represents
-- floating point numbers as integers by reporting the integer
-- of 1000*value. When setting a floating point number, AgentMon
-- will divide your SET value by 1000 and use the resulting floating
-- point number .
limitHigh OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The high limit alarm threshold (optional). The limit is ignored if
set to zero."
::= { limitEntry 8 }
limitLow OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The low limit alarm threshold (optional). The limit is ignored if
set to zero."
::= { limitEntry 9 }
limitPjump OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Positive Jump alarm threshold (optional). An alarm may be issued
if the currently measured value is greater than last measured
value+limitPjump . The limit is ignored if set to zero."
::= { limitEntry 10 }
limitNjump OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Negitive Jump alarm threshold (optional). An alarm may be issued
if the currently measured value is less then the last measured
value-limitNjump. The limit is ignored if set to zero."
::= { limitEntry 11 }
limitPrate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Positive Rate (percent of increase) alarm threshold (optional). An
alarm may be issued if the currently measured value exceeds the last
measured value by more than limitPrate percent. The limit is ignored
if set to zero."
::= { limitEntry 12 }
limitNrate OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The Negitive Rate alarm threshold (optional). An alarm may be sent if
the currently measured value has decreased by more than limitNrate
percent from the last measured value. The limit is ignored if set to zero."
::= { limitEntry 13 }
limitDelta OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The logging Delta for this test. If logging for this test is enable,
then data will be logged anytime the currently measured value differs
by more than limitDelta units from the last logged value. If set to
zero, data will not be logged."
::= { limitEntry 14 }
limitLog OBJECT-TYPE
SYNTAX INTEGER { disable(1), enable(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"When set to 'enable' logging will occur."
::= { limitEntry 15 }
---******************
-- The TrapManage Group
---******************
-- trapmanage OBJECT IDENTIFIER ::= { events20 2 }
--- The Trap Manage Group provides a way of remotely managing each instance
--- kind of each TRAP type.
--- To remotely manage Enlighten/Events, see the Limits MIB Group.
numTraps OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of enterprise specific traps in this mib."
::= { trapmanage 1 }
trapKind OBJECT-TYPE
SYNTAX DisplayString ( SIZE (0..255) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of the alarm threshold breached when last trap was sent."
::= { trapmanage 3 }
trapLevel OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
informational(2),
warning(3),
error(4),
severe(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The severity level of the last trap sent."
::= { trapmanage 4 }
trapmanageTable OBJECT-TYPE
SYNTAX SEQUENCE OF TrapEntry
ACCESS not-accessible
STATUS mandatory
::= { trapmanage 5 }
trapEntry OBJECT-TYPE
SYNTAX TrapEntry
ACCESS not-accessible
STATUS mandatory
INDEX { trapNum }
::= { trapmanageTable 1 }
TrapEntry ::=
SEQUENCE {
trapNum INTEGER,
trapName DisplayString,
trapState INTEGER,
trapSeverity INTEGER
}
trapNum OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The row index number into this table."
::= { trapEntry 1 }
trapName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The test name associated with this trap."
::= { trapEntry 2 }
trapState OBJECT-TYPE
SYNTAX INTEGER { disable(1), enable(2) }
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The current state of this trap."
::= { trapEntry 3 }
trapSeverity OBJECT-TYPE
SYNTAX INTEGER {
ok(1),
informational(2),
warning(3),
error(4),
severe(5)
}
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The severity level of this TRAP PDU. Set it to one of: ok,
informational, warning, error, or severe ."
::= { trapEntry 4 }
--- ********************
--- Operating System Group
--- ********************
--- os OBJECT IDENTIFIER ::= { events20 3 }
osName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name and version of the Operating System being run on this host."
::= { os 1 }
osLocalTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This system's concept of the current local time, date, and timezone."
::= { os 2 }
osReboot OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
" Displays the time and date of last reboot."
::= { os 3 }
--- ********************
--- Kernel Group
--- ********************
--- kernel OBJECT IDENTIFIER ::= { events20 4 }
kcontext OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of kernal context switches since last reboot."
::= { kernel 1 }
ktraps OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of kernal traps since last reboot."
::= { kernel 2 }
ksyscalls OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of kernal system calls since last reboot."
::= { kernel 3 }
kdevints OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of kernal device interupts since last reboot."
::= { kernel 4 }
kforks OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of forks since last reboot."
::= { kernel 5 }
kvforks OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of vforks since last reboot."
::= { kernel 6 }
kfpages OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of forked pages since last reboot."
::= { kernel 7 }
kvpages OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of vfork pages since last reboot."
::= { kernel 8 }
--- ********************
--- Message Buffers Group
--- ********************
--- mbuf OBJECT IDENTIFIER ::= { events20 5 }
mbufBufs OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of mbufs obtained from the page pool."
::= { mbuf 1 }
mbufClusters OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of mbuf clusters obtained from the page pool."
::= { mbuf 2 }
mbufClfree OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of free clusters."
::= { mbuf 3 }
mbufDrops OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times failed to find space."
::= { mbuf 4 }
mbufSpace OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of interface pages obtained from page pool."
::= { mbuf 5 }
mbufWait OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times waited for space."
::= { mbuf 6 }
mbufDrain OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times drained protocols for space."
::= { mbuf 7 }
mbufclfree TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, mbufClfree, trapKind }
DESCRIPTION
"The number of available message clusters (buffer groups)
has crossed an alarm threshold."
::= 1
--- ********************
--- Name Cache
--- ********************
--- ncache OBJECT IDENTIFIER ::= { events20 6 }
ncacheSize OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The size of the name cache."
::= { ncache 1 }
ncacheHits OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of name cache hits."
::= { ncache 2 }
ncacheMiss OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of name cache misses."
::= { ncache 3 }
ncachePurge OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times the name cache has been purged."
::= { ncache 4 }
--- ********************
--- Virtual Memory
--- ********************
-- vm OBJECT IDENTIFIER ::= { events20 7 }
vmLocked OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of VM pages currently locked."
::= { vm 1 }
vmClaimed OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of VM pages claimed."
::= { vm 2 }
vmFree OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of VM blocks free (30 second moving average)."
::= { vm 3 }
vmCctx OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Context Cache flushes since last reboot."
::= { vm 4 }
vmCseg OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Segment Cache flushes since last reboot."
::= { vm 5 }
vmCpag OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Page Cache flushes since last reboot."
::= { vm 6 }
vmCpar OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Partial Page Cache flushes since last reboot."
::= { vm 7 }
vmCusr OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of User Cache flushes since last reboot."
::= { vm 8 }
vmCreg OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of Region Cache flushes since last reboot."
::= { vm 9 }
swapFree OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of free swap space available. Expressed in kilobytes."
::= { vm 10 }
vmfree TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, vmFree, trapKind }
DESCRIPTION
"The current number of VM pages available has crossed an alarm threshold."
::= 2
swapfree TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, swapFree, trapKind }
DESCRIPTION
"The current amount of free swap space has crossed an alarm threshold"
::= 3
--- ********************
--- C. P. U.
--- ********************
--- cpu OBJECT IDENTIFIER ::= { events20 8 }
cpuLoad OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The average length of the run queue (multiplied by 1000)"
::= { cpu 1 }
cpuUser OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average percent of time CPU(s) spent in User mode
(multiplied by 1000)."
::= { cpu 2 }
cpuKernel OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average percent of time CPU(s) spent in Kernel mode
(multiplied by 1000)."
::= { cpu 3 }
cpuIdle OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average percent of time CPU(s) spent in Idle mode
(multiplied by 1000)."
::= { cpu 4 }
cpuWait OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Average percent of time CPU(s) spent in Wait mode
(multiplied by 1000)."
::= { cpu 5 }
cpuload TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, cpuLoad, trapKind }
DESCRIPTION
"The current CPU load average has crossed an alarm threshold."
::= 4
cpuuser TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, cpuUser, trapKind }
DESCRIPTION
"The percentage of CPU User time has crossed an alarm threshold."
::= 5
cpukernel TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, cpuKernel, trapKind }
DESCRIPTION
"The percentage of CPU Kernel time has crossed an alarm threshold."
::= 6
cpuwait TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, cpuWait, trapKind }
DESCRIPTION
"The percentage of CPU Wait time has crossed an alarm threshold."
::= 7
--- ********************
--- Process Group
--- ********************
--- proc OBJECT IDENTIFIER ::= { events20 9 }
numProcs OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of critical process types being monitored."
::= { proc 1 }
procTotal OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The total number of process currently loaded."
::= { proc 2 }
procFree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of process slots not currently in use."
::= { proc 3 }
procTable OBJECT-TYPE
SYNTAX SEQUENCE OF ProcEntry
ACCESS not-accessible
STATUS mandatory
::= { proc 4 }
procEntry OBJECT-TYPE
SYNTAX ProcEntry
ACCESS not-accessible
STATUS mandatory
INDEX { procIndex }
::= { procTable 1 }
ProcEntry ::=
SEQUENCE {
procIndex INTEGER,
procName DisplayString,
procInstances INTEGER,
procSize Gauge,
procTime Counter,
procStatus Gauge
}
procIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The table row number of this entry."
::= { procEntry 1 }
procName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of a critical process being monitored."
::= { procEntry 2 }
procInstances OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of processes currrently running and having the
name referanced by procName."
::= { procEntry 3 }
procSize OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Sum of data plus text regions for the named process."
::= { procEntry 5 }
procTime OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of CPU time used by the named process."
::= { procEntry 6 }
procStatus OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current run state of the named process."
::= { procEntry 7 }
procinstance TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, procInstances, procName, trapKind }
DESCRIPTION
" The number of running processes having the name referanced
by procName, has transitioned an alarm threshold. "
::= 8
procsize TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, procName, procSize, trapKind }
DESCRIPTION
" The size of the named process has crossed an alarm threshold. "
::= 9
proctime TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, procName, procTime, trapKind }
DESCRIPTION
" The amount of CPU time used by named process has crossed
an alarm threshold. "
::= 10
procfree TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, procFree, trapKind }
DESCRIPTION
" The number of free process slots has crossed an alarm threshold. "
::= 11
--- ********************
--- Filesystems
--- ********************
--- fs OBJECT IDENTIFIER ::= { events20 10 }
filesystems OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of real filesystems local to this host."
::= { fs 1 }
fsTable OBJECT-TYPE
SYNTAX SEQUENCE OF FsEntry
ACCESS not-accessible
STATUS mandatory
::= { fs 2 }
fsEntry OBJECT-TYPE
SYNTAX FsEntry
ACCESS not-accessible
STATUS mandatory
INDEX { fsIndex }
::= { fsTable 1 }
FsEntry ::=
SEQUENCE {
fsDev DisplayString,
fsName DisplayString,
fsType DisplayString,
fsBfree INTEGER,
fsIfree INTEGER,
fsIndex INTEGER
}
fsDev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The device associated with this filesystem."
::= { fsEntry 1 }
fsName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name associated with this filesystem."
::= { fsEntry 2 }
fsType OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The type of filesystem on this device."
::= { fsEntry 3 }
fsBfree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of (512 byte) disk blocks free on this filesystem."
::= { fsEntry 4 }
fsIfree OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of free inodes on this filesystem."
::= { fsEntry 5 }
fsIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { fsEntry 6 }
fsbfree TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, fsDev, fsName, fsBfree, trapKind }
DESCRIPTION
"The number of available disk blocks on this filesystem has
crossed an alarm threshold."
::= 12
fsifree TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, fsDev, fsName, fsIfree, trapKind }
DESCRIPTION
"The number of available inodes on this filesystem has
crossed an alarm threshold."
::= 13
--- ********************
--- Files Group
--- ********************
--- files OBJECT IDENTIFIER ::= { events20 11 }
numFiles OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of files being monitored."
::= { files 1 }
filesTable OBJECT-TYPE
SYNTAX SEQUENCE OF FileEntry
ACCESS not-accessible
STATUS mandatory
::= { files 2 }
fileEntry OBJECT-TYPE
SYNTAX FileEntry
ACCESS not-accessible
STATUS mandatory
INDEX { fileIndex }
::= { filesTable 1 }
FileEntry ::=
SEQUENCE {
fileName DisplayString,
fileSize INTEGER,
fileRmtime DisplayString,
fileMtime INTEGER,
fileRatime DisplayString,
fileAtime INTEGER,
fileLine DisplayString,
fileIndex INTEGER
}
fileName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name associated with this file."
::= { fileEntry 1 }
fileSize OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The length of this file (in bytes) ."
::= { fileEntry 2 }
fileRmtime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time this file was last modified."
::= { fileEntry 3 }
fileMtime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An integer number representing the time this file was last modified,
referranced to the Epoch most commonly used on this platform."
::= { fileEntry 4 }
fileRatime OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The time this file was last accessed."
::= { fileEntry 5 }
fileAtime OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"An integer number representing the time this file was last accessed,
referranced to the Epoch most commonly used on this platform."
::= { fileEntry 6 }
fileLine OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The regular expression match reported in the most recent TRAP
message regarding this file. This assumes file clamping is being
used."
::= { fileEntry 7 }
fileIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { fileEntry 8 }
filesize TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, fileName , fileSize, trapKind }
DESCRIPTION
"The size of the named file has crossed an alarm threshold."
::= 14
filemtime TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, fileName , fileRmtime, trapKind }
DESCRIPTION
"The named file was recently modified."
::= 15
fileatime TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, fileName , fileRatime, trapKind }
DESCRIPTION
"The named file was recently accessed."
::= 16
fileclamp TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, fileName, fileLine, trapKind }
DESCRIPTION
"One or more regular expression matches have been found in
the named file. The object value of fileLine is set to the
contents of the first offending file line."
::= 28
--- ********************
--- Queues Group
--- ********************
--- qu OBJECT IDENTIFIER ::= { events20 12 }
numQueues OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of queues being monitored."
::= { qu 1 }
quTable OBJECT-TYPE
SYNTAX SEQUENCE OF QuEntry
ACCESS not-accessible
STATUS mandatory
::= { qu 2 }
quEntry OBJECT-TYPE
SYNTAX QuEntry
ACCESS not-accessible
STATUS mandatory
INDEX { quIndex }
::= { quTable 1 }
QuEntry ::=
SEQUENCE {
quIndex INTEGER,
quName DisplayString,
quOldFiles INTEGER,
quQuedFiles INTEGER,
quMaxAge INTEGER
}
quIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { quEntry 1 }
quName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name associated with this queue."
::= { quEntry 2 }
quOldFiles OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of old files in this queue. This trap is available
only if quMaxAge is greater than zero."
::= { quEntry 3 }
quQuedFiles OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Total number of files in this queue. This trap is
available only if quMaxAge is set to zero."
::= { quEntry 4 }
quMaxAge OBJECT-TYPE
SYNTAX INTEGER (0..65535)
ACCESS read-write
STATUS mandatory
DESCRIPTION
"The minimum number of minutes old a file must be
before it is counted as being old."
::= { quEntry 5 }
quedOldFiles TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, quName, quMaxAge, quOldFiles, trapKind }
DESCRIPTION
"The total number of files in the named queue (more
than quMaxAge old) has crossed an alarm threshold."
::= 17
quedFiles TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, quName, quQuedFiles, trapKind }
DESCRIPTION
"The total number of files in the named queue has
crossed an alarm threshold."
::= 18
--- ********************
--- Hardware Inventory
--- ********************
-- hardware OBJECT IDENTIFIER ::= { events20 13 }
totalHwItems OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of items inventoried."
::= { hardware 1 }
addedHwItems OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hardware items added since last inventory."
::= { hardware 2 }
missingHwItems OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of hardware items missing since last inventory."
::= { hardware 3 }
hardwareTable OBJECT-TYPE
SYNTAX SEQUENCE OF HardwareEntry
ACCESS not-accessible
STATUS mandatory
::= { hardware 4 }
hardwareEntry OBJECT-TYPE
SYNTAX HardwareEntry
ACCESS not-accessible
STATUS mandatory
INDEX { hardwareIndex }
::= { hardwareTable 1 }
HardwareEntry ::=
SEQUENCE {
hardwareIndex INTEGER,
hardwareItem DisplayString
}
hardwareItem OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The description of one item inventoried."
::= { hardwareEntry 1 }
hardwareIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of this row of the table."
::= { hardwareEntry 2 }
hwchange TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, addedHwItems, missingHwItems }
DESCRIPTION
"The hardware on this system has changed. The number of additions and
deletions are noted. Someone was emailed the changes."
::= 19
--- ********************
--- Software Inventory
--- ********************
--- software OBJECT IDENTIFIER ::= { events20 14 }
numItems OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of items inventoried."
::= { software 1 }
addedSwItems OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of items inventoried."
::= { software 2 }
missingSwItems OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of items inventoried."
::= { software 3 }
softwareTable OBJECT-TYPE
SYNTAX SEQUENCE OF SoftwareEntry
ACCESS not-accessible
STATUS mandatory
::= { software 4 }
softwareEntry OBJECT-TYPE
SYNTAX SoftwareEntry
ACCESS not-accessible
STATUS mandatory
INDEX { softwareIndex }
::= { softwareTable 1 }
SoftwareEntry ::=
SEQUENCE {
softwareIndex INTEGER,
softwareName DisplayString,
softwareVersion DisplayString,
softwareComment DisplayString
}
softwareIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of this row of the table."
::= { softwareEntry 1 }
softwareName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name of this software application or module ."
::= { softwareEntry 2 }
softwareVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The version and revision of software."
::= { softwareEntry 3 }
softwareComment OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Additional information about the named software package."
::= { softwareEntry 4 }
swchange TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapSeverity, addedSwItems, missingHwItems }
DESCRIPTION
"The software tracked on this system has changed."
::= 20
--- ********************
--- Printer Group
--- ********************
--- printer OBJECT IDENTIFIER ::= { events20 15 }
numPrinters OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of printers monitored."
::= { printer 1 }
printerTable OBJECT-TYPE
SYNTAX SEQUENCE OF PrinterEntry
ACCESS not-accessible
STATUS mandatory
::= { printer 2 }
printerEntry OBJECT-TYPE
SYNTAX PrinterEntry
ACCESS not-accessible
STATUS mandatory
INDEX { printerIndex }
::= { printerTable 1 }
PrinterEntry ::=
SEQUENCE {
printerName2 DisplayString,
printerName DisplayString,
printerStatus DisplayString,
printerIndex INTEGER
}
printerName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The other name this printer is known by."
::= { printerEntry 1 }
printerName2 OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"One of two names this printer is known by."
::= { printerEntry 2 }
printerStatus OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The current status of the printer."
::= { printerEntry 3 }
printerIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index of this row of the table."
::= { printerEntry 4 }
printerState TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, printerName, printerStatus }
DESCRIPTION
"The status of the named printer has changed."
::= 21
--- ********************
--- Disk Group
--- ********************
--- disks OBJECT IDENTIFIER ::= {events20 16 }
numDisk OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of disks being monitored in the diskTable."
::= { disks 1 }
diskTable OBJECT-TYPE
SYNTAX SEQUENCE OF DiskEntry
ACCESS not-accessible
STATUS mandatory
::= { disks 2 }
diskEntry OBJECT-TYPE
SYNTAX DiskEntry
ACCESS not-accessible
STATUS mandatory
INDEX { diskIndex }
::= { diskTable 1 }
DiskEntry ::=
SEQUENCE {
diskIndex INTEGER,
diskName DisplayString,
diskTime Counter,
diskSeek Counter,
diskXfers Counter,
diskReads Counter
}
diskIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of disk entries in this table."
::= { diskEntry 1 }
diskName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The name for the disk that this table row refers to."
::= { diskEntry 2 }
diskTime OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The amount of time this disk has been active."
::= { diskEntry 3 }
diskSeek OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of seeks this disk has preformed."
::= { diskEntry 4 }
diskXfers OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of data transfers to/from this disk."
::= { diskEntry 5 }
diskReads OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of blocks read from this disk."
::= { diskEntry 6 }
--- ********************
--- Remote Call Proceedures
--- ********************
--- rpc OBJECT IDENTIFIER ::= { events20 17 }
-- Client Side
rpcCalls OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of rpc (client) calls since last reboot."
::= { rpc 1 }
rpcBadCalls OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of bad rpc (client) calls since last reboot."
::= { rpc 2 }
rpcReTrans OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of rpc (client) retransmissions since last reboot."
::= { rpc 3 }
rpcBadXid OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of unexpected rpc (client) packets,
since last reboot."
::= { rpc 4 }
rpcTout OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of rpc (client) timeouts since last reboot."
::= { rpc 5 }
rpcWait OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of rpc (client) waits since last reboot."
::= { rpc 6 }
rpcNewCred OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of times since last reboot that rpc (client)
authentation has been refreshed."
::= { rpc 7 }
rpcTimers OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of rpc (client) timers in use."
::= { rpc 8 }
-- server side
rpsCalls OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of rpc (server) calls since last reboot."
::= { rpc 9 }
rpsBadCalls OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of bad rpc (server) calls since last reboot."
::= { rpc 10 }
rpsNullRecv OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of rpc (server) calls not available but thought received."
::= { rpc 11 }
rpsBadLen OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of truncated rpc (server) packets , since last reboot."
::= { rpc 12 }
rpsXdrcall OBJECT-TYPE
SYNTAX Counter
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The number of received rpc (server) packets, since last reboot
that had undecodable headers."
::= { rpc 13 }
--- ********************
--- API Group
--- ********************
--- api1 OBJECT IDENTIFIER ::= { events20 20 }
api1fname OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filename that the following data came from."
::= { api1 1 }
api1Table OBJECT-TYPE
SYNTAX SEQUENCE OF Api1Entry
ACCESS not-accessible
STATUS mandatory
::= { api1 2 }
api1Entry OBJECT-TYPE
SYNTAX Api1Entry
ACCESS not-accessible
STATUS mandatory
INDEX { api1Index }
::= { api1Table 1 }
Api1Entry ::=
SEQUENCE {
api1Index INTEGER,
api1Label DisplayString,
api1Data INTEGER
}
api1Index OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { api1Entry 1 }
api1Label OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A string associated with api1data and comes from the same row."
::= { api1Entry 2 }
api1Data OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The data found in this row of the api1 table."
::= { api1Entry 3 }
api1trap TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapSeverity, api1fname, api1Data, api1Label, trapKind }
DESCRIPTION
"The value of api1Data has crossed an alarm threshold."
::= 22
--- api2 OBJECT IDENTIFIER ::= { events20 21 }
api2fname OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filename that the following data came from."
::= { api2 1 }
api2Table OBJECT-TYPE
SYNTAX SEQUENCE OF Api1Entry
ACCESS not-accessible
STATUS mandatory
::= { api2 2 }
api2Entry OBJECT-TYPE
SYNTAX Api2Entry
ACCESS not-accessible
STATUS mandatory
INDEX { api2Index }
::= { api2Table 1 }
Api2Entry ::=
SEQUENCE {
api2Index INTEGER,
api2Label DisplayString,
api2Data INTEGER
}
api2Index OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { api2Entry 1 }
api2Label OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A string associated with api2data and comes from the same row."
::= { api2Entry 2 }
api2Data OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The data found in this row of the api2 table."
::= { api2Entry 3 }
api2trap TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapSeverity, api2fname, api2Data, api2Label, trapKind }
DESCRIPTION
"The value of api2Data has crossed an alarm threshold."
::= 23
--- api3 OBJECT IDENTIFIER ::= { events20 22 }
api3fname OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filename that the following data came from."
::= { api3 1 }
api3Table OBJECT-TYPE
SYNTAX SEQUENCE OF Api3Entry
ACCESS not-accessible
STATUS mandatory
::= { api3 2 }
api3Entry OBJECT-TYPE
SYNTAX Api3Entry
ACCESS not-accessible
STATUS mandatory
INDEX { api3Index }
::= { api3Table 1 }
Api3Entry ::=
SEQUENCE {
api3Index INTEGER,
api3Label DisplayString,
api3Data INTEGER
}
api3Index OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { api3Entry 1 }
api3Label OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A string associated with api3data and comes from the same row."
::= { api3Entry 2 }
api3Data OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The data found in this row of the api3 table."
::= { api3Entry 3 }
api3trap TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapSeverity, api3fname, api3Data, api3Label, trapKind }
DESCRIPTION
"The value of api1Data has crossed an alarm threshold."
::= 24
--- api4 OBJECT IDENTIFIER ::= { events20 23 }
api4fname OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filename that the following data came from."
::= { api4 1 }
api4Table OBJECT-TYPE
SYNTAX SEQUENCE OF Api4Entry
ACCESS not-accessible
STATUS mandatory
::= { api4 2 }
api4Entry OBJECT-TYPE
SYNTAX Api4Entry
ACCESS not-accessible
STATUS mandatory
INDEX { api4Index }
::= { api4Table 1 }
Api4Entry ::=
SEQUENCE {
api4Index INTEGER,
api4Label DisplayString,
api4Data INTEGER
}
api4Index OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { api4Entry 1 }
api4Label OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A string associated with api4data and comes from the same row."
::= { api4Entry 2 }
api4Data OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The data found in this row of the api4 table."
::= { api4Entry 3 }
api4trap TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapSeverity, api4fname, api4Data, api4Label, trapKind }
DESCRIPTION
"The value of api1Data has crossed an alarm threshold."
::= 25
--- api5 OBJECT IDENTIFIER ::= { events20 24 }
api5fname OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filename that the following data came from."
::= { api5 1 }
api5Table OBJECT-TYPE
SYNTAX SEQUENCE OF Api5Entry
ACCESS not-accessible
STATUS mandatory
::= { api5 2 }
api5Entry OBJECT-TYPE
SYNTAX Api5Entry
ACCESS not-accessible
STATUS mandatory
INDEX { api5Index }
::= { api5Table 1 }
Api5Entry ::=
SEQUENCE {
api5Index INTEGER,
api5Label DisplayString,
api5Data INTEGER
}
api5Index OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { api5Entry 1 }
api5Label OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A string associated with api5data and comes from the same row."
::= { api5Entry 2 }
api5Data OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The data found in this row of the api5 table."
::= { api5Entry 3 }
api5trap TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapSeverity, api5fname, api5Data, api5Label, trapKind }
DESCRIPTION
"The value of api5Data has crossed an alarm threshold."
::= 26
--- api6 OBJECT IDENTIFIER ::= { events20 25 }
api6fname OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The filename that the following data came from."
::= { api6 1 }
api6Table OBJECT-TYPE
SYNTAX SEQUENCE OF Api6Entry
ACCESS not-accessible
STATUS mandatory
::= { api6 2 }
api6Entry OBJECT-TYPE
SYNTAX Api6Entry
ACCESS not-accessible
STATUS mandatory
INDEX { api6Index }
::= { api6Table 1 }
Api6Entry ::=
SEQUENCE {
api6Index INTEGER,
api6Label DisplayString,
api6Data INTEGER
}
api6Index OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The index to this table entry."
::= { api6Entry 1 }
api6Label OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A string associated with api6data and comes from the same row."
::= { api6Entry 2 }
api6Data OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The data found in this row of the api6 table."
::= { api6Entry 3 }
api6trap TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapSeverity, api6fname, api6Data, api6Label, trapKind }
DESCRIPTION
"The value of api6Data has crossed an alarm threshold."
::= 27
--- ********************
--- User Traps
--- ********************
--- usertraps OBJECT IDENTIFIER ::= { events20 24 }
-- USER TRAP SUPPORT
-- These objects are just place holders for the Command Line Interface (CLI)
-- Their values, if any, represent the values for the last TRAP that
-- originated from the CLI
userTrapLabel OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A descriptive lable sent in the last TRAP originating from the
Command Line Interface."
::= { usertraps 1 }
userTrapMsg OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The TRAP description sent in the last TRAP originating from the
Command Line Interface."
::= { usertraps 2 }
userTrapValue OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The integer absolute value of the userTrapMsg instance.
If userTrapMsg does not start with numerics, then the value is zero."
::= { usertraps 3 }
userTrapText OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255) )
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The optional user text obtained from the Command Line Interface. The
text could prehaps be the Unit of Measure for userTrapValue."
::= { usertraps 4 }
utrap500 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 500
utrap501 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 501
utrap502 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 502
utrap503 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 503
utrap504 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 504
utrap505 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 505
utrap506 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 506
utrap507 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 507
utrap508 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 508
utrap509 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 509
utrap510 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 510
utrap511 TRAP-TYPE
ENTERPRISE events20
VARIABLES { trapLevel, userTrapLabel, userTrapMsg, userTrapValue, userTrapText }
DESCRIPTION
"A user defined Trap sent by the CLI."
::= 511
END